Text = "If you want any explanation or wish my collaboration for any project, contact me through e-mail at UNISYSTEM@DNS.OMNIA.IT (refer to Anastasi Lorenzo)."
Top = 3960
Width = 7092
End
Begin PictureBox EndCmd
BackColor = &H000000FF&
Height = 1000
Left = 0
ScaleHeight = 975
ScaleWidth = 975
TabIndex = 0
Top = 0
Width = 1000
End
Begin Timer Timer1
Enabled = 0 'False
Index = 4
Interval = 50
Left = 2040
Top = 4680
End
Begin Timer Timer1
Enabled = 0 'False
Index = 3
Interval = 50
Left = 1560
Top = 4680
End
Begin Timer Timer1
Enabled = 0 'False
Index = 2
Interval = 50
Left = 1080
Top = 4680
End
Begin Timer Timer1
Enabled = 0 'False
Index = 1
Interval = 50
Left = 600
Top = 4680
End
Begin Timer Timer1
Enabled = 0 'False
Index = 0
Interval = 50
Left = 120
Top = 4680
End
Begin PictureBox StatusBar
BackColor = &H000000FF&
Height = 1000
Left = 0
ScaleHeight = 975
ScaleWidth = 975
TabIndex = 2
Top = 0
Width = 1000
End
Begin PictureBox Frame3D1
BackColor = &H000000FF&
Height = 1000
Left = 0
ScaleHeight = 975
ScaleWidth = 975
TabIndex = 3
Top = 0
Width = 1000
Begin ListBox LogWnd
BackColor = &H00000000&
ForeColor = &H0000FF00&
Height = 2328
Left = 240
TabIndex = 1
Top = 360
Width = 6612
End
End
Begin PictureBox VBServer1
BackColor = &H000000FF&
Height = 1000
Left = 0
ScaleHeight = 975
ScaleWidth = 975
TabIndex = 5
Top = 0
Width = 1000
End
End
Sub EndCmd_Click ()
Dim i As Integer
'close all connection
For i = 1 To MAX_N_USERS
If users(i).control_slot <> INVALID_SOCKET Then
'close control slot
retf = CloseTheSocket(users(i).control_slot)
End If
If users(i).data_slot <> INVALID_SOCKET Then
'close data slot
retf = CloseTheSocket(users(i).data_slot)
End If
Next
'end FTP server
retf = WSACleanup()
End
End Sub
Sub Form_Load ()
Dim i As Integer
Dim hdr As String, item As String
'--- Initialization
'an FTP command is terminated by Carriage_Return +
'Line_Feed
crlf = Chr$(13) + Chr$(10)
'possible sintax errors in FTP commands
sintax_error_list(0) = "200 Command Ok."
sintax_error_list(1) = "202 Command not implemented, superfluous at this site."